home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Announcer / EarBase.cp < prev    next >
Encoding:
Text File  |  1997-06-28  |  277 b   |  24 lines  |  [TEXT/CWIE]

  1. // EarBase.cp
  2.  
  3. #ifndef EarBase_h
  4. #include "EarBase.h"
  5. #endif
  6.  
  7. EarBase::EarBase()
  8.   : link( this )
  9.   {
  10.   }
  11.  
  12. EarBase::EarBase( const Announcer& announcer )
  13.   : link( this )
  14.   {
  15.     ListenTo( announcer );
  16.   }
  17.  
  18. EarBase::~EarBase()
  19.   {
  20.   }
  21.  
  22. #include "ListLink.cp"
  23. #include "ListOf.cp"
  24.